100
|
How do I specify the indentation of the child items relative to their parents

With Expropertieslist1
.Indent = 11
.Select(Expropertieslist1)
.ExpandAll()
End With
|
99
|
How do I get the a property based on its identifier

With Expropertieslist1
.BeginUpdate()
.Add("Root","",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Label)
.Add("Child 1",1,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root").ID = 1234
.Add("Child 2",2,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root")
.set_ExpandItem("Root",True)
.Add("Property",.get_Property(1234).Name,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Label)
.EndUpdate()
End With
|
98
|
How do I get the a property based on its index

With Expropertieslist1
.BeginUpdate()
.Add("Root","",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Label)
.Add("Child 1",1,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root")
.Add("Child 2",2,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root")
.set_ExpandItem("Root",True)
.Add("Item",.Item(1).Name,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Label)
.EndUpdate()
End With
|
97
|
How do I get the number or count of the properties being listed

With Expropertieslist1
.BeginUpdate()
.Add("Root","",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Label)
.Add("Child 1",1,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root")
.Add("Child 2",2,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root")
.set_ExpandItem("Root",True)
.Add("Count",.Count,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Label)
.EndUpdate()
End With
|
96
|
How do I change the name or the caption for a column

With Expropertieslist1
.HeaderVisible = True
.set_ColumnCaption(0,"Properties")
.Select(Expropertieslist1)
End With
|
95
|
How do I expand a property

With Expropertieslist1
.BeginUpdate()
.Add("Root","",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Label)
.Add("Child 1",1,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root")
.Add("Child 2",2,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit,Nothing,"Root")
.set_ExpandItem("Root",True)
.EndUpdate()
End With
|
94
|
How do I change the width for a column

With Expropertieslist1
.set_ColumnWidth(1,48)
.Select(Expropertieslist1)
End With
|
93
|
How do I clear or remove all properties
With Expropertieslist1
.Add("First","A",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Clear()
.Refresh()
End With
|
92
|
How do I remove a property
With Expropertieslist1
.Add("First","A",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Remove("First")
.Refresh()
End With
|
91
|
How do I add a property

With Expropertieslist1
.Add("First Name","Mihai",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Refresh()
End With
|
90
|
How do I change the visual aspect description's spliter, using EBN

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exHeaderFilterBarButton,&H1000000)
.Select(Expropertieslist1)
End With
|
89
|
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumb,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumbP,&H2000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exHSThumbH,&H3000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumb,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumbP,&H2000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exVSThumbH,&H3000000)
.Select(Expropertieslist1)
End With
|
88
|
I've seen that you can change the visual appearance for the scroll bar. How can I do that

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtn,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtnP,&H2000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSBtnH,&H3000000)
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exHSBack,Color.FromArgb(240,240,240))
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exVSBack,Color.FromArgb(240,240,240))
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exScrollSizeGrip,Color.FromArgb(240,240,240))
.HeaderVisible = True
.ColumnAutoResize = False
.Select(Expropertieslist1)
End With
|
87
|
Can I change the forecolor for the tooltip

With Expropertieslist1
.ToolTipDelay = 1
.ToolTipWidth = 364
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipForeColor,Color.FromArgb(255,0,0))
.AllowTooltip = True
.Select(Expropertieslist1)
End With
|
86
|
Can I change the background color for the tooltip

With Expropertieslist1
.ToolTipDelay = 1
.ToolTipWidth = 364
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipBackColor,Color.FromArgb(255,0,0))
.Select(Expropertieslist1)
.AllowTooltip = True
End With
|
85
|
Can I change the default border of the tooltip, using your EBN files

With Expropertieslist1
.ToolTipDelay = 1
.ToolTipWidth = 364
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exToolTipAppearance,&H1000000)
.Select(Expropertieslist1)
.AllowTooltip = True
End With
|
84
|
Is there any option to highligth the column from the cursor - point
With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exCursorHoverColumn,&H1000000)
.HeaderVisible = True
End With
|
83
|
How can change the visual appearance for the spin control, using your EBN files

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinUpButtonUp,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinUpButtonDown,&H2000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinDownButtonUp,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSpinDownButtonDown,&H2000000)
.AllowSpin = True
.Add("Spin",50,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Refresh()
End With
|
82
|
How can change the visual appearance for the slider or track bar, using your EBN files

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSliderThumb,&H1000000)
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exSliderRange,Color.FromArgb(210,210,210))
.Add("Slider",50,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.EditSlider)
.Refresh()
End With
|
81
|
How do I change the visual aspect of the drop down calendar window, that shows up if I click the drop down filter button, using EBN

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDateHeader,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDateTodayUp,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDateTodayDown,&H2000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDateScrollThumb,&H1000000)
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDateScrollRange,Color.FromArgb(230,230,230))
.set_Background(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDateSeparatorBar,Color.FromArgb(230,230,230))
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDateSelect,&H1000000)
.Add("Date","1/1/2001",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.EditDate)
.Refresh()
End With
|
80
|
How can change the visual appearance for the button that are visible inside the editors, using your EBN files

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exButtonDown,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exButtonUp,&H2000000)
.Select(Expropertieslist1)
End With
|
79
|
How can change the visual appearance for the button that shows the drop down editors, using your EBN files

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDropDownButtonUp,&H1000000)
.set_Background32(exontrol.EXPROPERTIESLISTLib.BackgroundPartEnum.exDropDownButtonDown,&H2000000)
.Select(Expropertieslist1)
End With
|
78
|
Can I change the order of the buttons in the scroll bar

With Expropertieslist1
.set_ScrollOrderParts(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exHScroll,"t,l,r")
.set_ScrollOrderParts(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,"t,l,r")
.Select(Expropertieslist1)
End With
|
77
|
The thumb size seems to be very small. Can I make it bigger

With Expropertieslist1
.set_ScrollThumbSize(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,128)
.Select(Expropertieslist1)
End With
|
76
|
How do I enlarge or change the size of the control's scrollbars

With Expropertieslist1
.ScrollHeight = 18
.ScrollWidth = 18
.ScrollButtonWidth = 18
.ScrollButtonHeight = 18
.Select(Expropertieslist1)
End With
|
75
|
How can I display my text on the scroll bar, using a different font

With Expropertieslist1
.set_ScrollPartCaption(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exThumbPart,"This is just a text")
.get_ScrollFont(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll).Size = 12
.Select(Expropertieslist1)
End With
|
74
|
How can I display my text on the scroll bar

With Expropertieslist1
.set_ScrollPartCaption(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exThumbPart,"this is just a text")
.Select(Expropertieslist1)
End With
|
73
|
How do I assign a tooltip to a scrollbar

With Expropertieslist1
.set_ScrollToolTip(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,"This is a tooltip being shown when you click and drag the thumb in the vertical scroll bar")
.Select(Expropertieslist1)
End With
|
72
|
How do I assign an icon to the button in the scrollbar

With Expropertieslist1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.set_ScrollPartVisible(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,True)
.set_ScrollPartCaption(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,"<img>1</img>")
.ScrollHeight = 18
.ScrollButtonWidth = 18
.Select(Expropertieslist1)
End With
|
71
|
I need to add a button in the scroll bar. Is this possible

With Expropertieslist1
.set_ScrollPartVisible(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,True)
.set_ScrollPartCaption(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,"1")
.Select(Expropertieslist1)
End With
|
70
|
Can I display an additional buttons in the scroll bar

With Expropertieslist1
.set_ScrollPartVisible(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB1Part,True)
.set_ScrollPartVisible(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exLeftB2Part,True)
.set_ScrollPartVisible(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exRightB6Part,True)
.set_ScrollPartVisible(exontrol.EXPROPERTIESLISTLib.ScrollBarEnum.exVScroll,exontrol.EXPROPERTIESLISTLib.ScrollPartEnum.exRightB5Part,True)
.Select(Expropertieslist1)
End With
|
69
|
Can I change the font for the tooltip

With Expropertieslist1
.ToolTipDelay = 1
With .ToolTipFont
.Name = "Tahoma"
.Size = 14
End With
.AllowTooltip = True
.Select(Expropertieslist1)
End With
|
68
|
How do I call your x-script language

With Expropertieslist1
With .ExecuteTemplate("Add(`Bold`,1,1)")
.Bold = True
End With
End With
|
67
|
How do I disable sorting the columns when clicking the control's header
With Expropertieslist1
.SortOnClick = exontrol.EXPROPERTIESLISTLib.SortOnClickEnum.exNoSort
.HeaderVisible = True
.Select(Expropertieslist1)
End With
|
66
|
Can I use your EBN files to change the visual appearance for +/- expand - collapse buttons

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.HasButtons = exontrol.EXPROPERTIESLISTLib.ExpandButtonEnum.exCustom
.set_HasButtonsCustom(False,16777216)
.set_HasButtonsCustom(True,33554432)
.Select(Expropertieslist1)
End With
|
65
|
Can I use my own icons for the +/- ( expand/collapse ) buttons

With Expropertieslist1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.HasButtons = exontrol.EXPROPERTIESLISTLib.ExpandButtonEnum.exCustom
.set_HasButtonsCustom(False,1)
.set_HasButtonsCustom(True,2)
.Select(Expropertieslist1)
End With
|
64
|
How do I change visual appearance of the +/- ( expand/collapse ) buttons

With Expropertieslist1
.HasButtons = exontrol.EXPROPERTIESLISTLib.ExpandButtonEnum.exWPlus
.Select(Expropertieslist1)
End With
|
63
|
How do I browse or select for a com or net object
With Expropertieslist1
.SelectedObject = Expropertieslist1
End With
|
62
|
How do I expand all properties

With Expropertieslist1
.Select(Expropertieslist1)
.ExpandAll()
End With
|
61
|
How do I enable resizing the columns at runtime

With Expropertieslist1
.ColumnsAllowSizing = True
.Select(Expropertieslist1)
End With
|
60
|
How do I call your x-script language

With Expropertieslist1
.Template = "Add(`First`,1,1)"
End With
|
59
|
How can I enable or disable the control

With Expropertieslist1
.Enabled = False
.Select(Expropertieslist1)
End With
|
58
|
I've seen that the width of the tooltip is variable. Can I make it larger

With Expropertieslist1
.ToolTipWidth = 328
.AllowTooltip = True
.Select(Expropertieslist1)
End With
|
57
|
How do I disable showing the tooltip for all control
With Expropertieslist1
.ToolTipDelay = 0
.AllowTooltip = True
.Select(Expropertieslist1)
End With
|
56
|
How do I let the tooltip being displayed longer

With Expropertieslist1
.ToolTipPopDelay = 10000
.AllowTooltip = True
.Select(Expropertieslist1)
End With
|
55
|
How do I show the tooltip quicker

With Expropertieslist1
.ToolTipDelay = 1
.AllowTooltip = True
.Select(Expropertieslist1)
End With
|
54
|
How do I get the handle of the control's window
Dim var_hWnd
With Expropertieslist1
var_hWnd = .hWnd
End With
|
53
|
How do I show alternate rows in different background color

With Expropertieslist1
.BackColorAlternate = Color.FromArgb(240,240,240)
.Select(Expropertieslist1)
End With
|
52
|
How do enable or disable tooltips
With Expropertieslist1
.AllowTooltip = True
.Select(Expropertieslist1)
End With
|
51
|
How do change the foreground color for the control's header bar, using EBN

With Expropertieslist1
.HeaderVisible = True
.ForeColorHeader = Color.FromArgb(255,0,0)
End With
|
50
|
How do change the visual appearance for the control's header bar, using EBN

With Expropertieslist1
.HeaderVisible = True
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.BackColorHeader32 = &H1000000
End With
|
49
|
How do I change the foreground color for the description part in the bottom side of the control

With Expropertieslist1
.ForeColorDescription = Color.FromArgb(255,0,0)
.Select(Expropertieslist1)
End With
|
48
|
How do I change the visual appearance for the description part in the bottom side of the control, using your EBN files

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.BackColorDescription32 = &H1000000
End With
|
47
|
How do I change the background color for the description part in the bottom side of the control

With Expropertieslist1
.BackColorDescription = Color.FromArgb(255,0,0)
End With
|
46
|
Is there any option to specify the height of the items, before adding them

With Expropertieslist1
.DefaultItemHeight = 13
.Select(Expropertieslist1)
End With
|
45
|
How do I show or hide the connection between categories

With Expropertieslist1
.MarkCategories = True
.LinkCategories = False
.ShowCategories = True
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
44
|
How do I show or hide the categories

With Expropertieslist1
.MarkCategories = True
.MarkLineColor = Color.FromArgb(255,0,0)
.ShowCategories = True
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
43
|
How do I change the foreground color for categories

With Expropertieslist1
.ForeColorCategories = Color.FromArgb(255,0,0)
.ShowCategories = True
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
42
|
How do I change the background color for categories

With Expropertieslist1
.BackColorCategories = Color.FromArgb(255,0,0)
.ShowCategories = True
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
41
|
How do I sort the control

With Expropertieslist1
.Select(Expropertieslist1)
.Sort(False)
End With
|
40
|
Is there any option to change the color for the grid lines

With Expropertieslist1
.HasGridLines = exontrol.EXPROPERTIESLISTLib.GridLinesEnum.exAllLines
.GridLineColor = Color.FromArgb(255,0,0)
.Select(Expropertieslist1)
End With
|
39
|
How do I specify the default category

With Expropertieslist1
.DefaultCategory = "Font"
.ShowCategories = True
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
38
|
How do I show or hide the categories

With Expropertieslist1
.MarkCategories = False
.ShowCategories = True
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
37
|
How do I get a property based on its name

With Expropertieslist1
.Add("First Name","Mihai",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit).ID = 100
.Add("Last Name","Filimon",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.SelectedProperty = .get_Property(100)
.Refresh()
End With
|
36
|
How do I get a property based on its name

With Expropertieslist1
.Add("First Name","Mihai",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Add("Last Name","Filimon",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.SelectedProperty = .get_Property("Last Name")
.Refresh()
End With
|
35
|
How do I maintain performance while making several changes
With Expropertieslist1
.BeginUpdate()
.Add("First",1,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Add("Second",1,exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.EndUpdate()
End With
|
34
|
How can I get a list of interfaces that an object implements

With Expropertieslist1
Debug.Print( .get_Interfaces(Expropertieslist1) )
End With
|
33
|
How can I display something else when including the elements of a collection
With Expropertieslist1
.ShowObjects = True
.ShowItemsCollection = True
.NameItemsCollection = "Name;Caption;Item;Index"
.Select(Expropertieslist1)
End With
|
32
|
How can I include the elements of a collection
With Expropertieslist1
.ShowObjects = True
.ShowItemsCollection = True
.Select(Expropertieslist1)
End With
|
31
|
How can I use a spin control to edit numeric values

With Expropertieslist1
.AllowSpin = True
.Select(Expropertieslist1)
End With
|
30
|
How can I change the control's font

With Expropertieslist1
.Font.Name = "Tahoma"
.Select(Expropertieslist1)
End With
|
29
|
How do I show or hide the variables of an object like Font

With Expropertieslist1
.ShowVariables = True
.Select(.Font)
End With
|
28
|
How do I show or hide the categories

With Expropertieslist1
.ShowCategories = True
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
27
|
How do I refresh the control
With Expropertieslist1
.Add("Last Name","Filimon",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Refresh()
End With
|
26
|
How can still display the selected items when the control loses the focus
With Expropertieslist1
.HideSelection = False
.Add("First Name","Mihai",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Add("Last Name","Filimon",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.SelectedProperty = .get_Property("Last Name")
.Refresh()
End With
|
25
|
How do I change the visual appearance effect for the selected item, using EBN

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.SelBackColor32 = &H1000000
.SelForeColor = Color.FromArgb(0,0,0)
.Add("First Name","Mihai",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Add("Last Name","Filimon",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.SelectedProperty = .get_Property("Last Name")
.Refresh()
End With
|
24
|
How do I change the colors for the selected item

With Expropertieslist1
.SelBackColor = Color.FromArgb(0,0,0)
.Add("First Name","Mihai",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Add("Last Name","Filimon",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.SelectedProperty = .get_Property("Last Name")
.Refresh()
End With
|
23
|
How do I show or hide the non browseable members
With Expropertieslist1
.ShowNonBrowsable = True
.Select(Expropertieslist1)
End With
|
22
|
How can I hide or show the object's property pages

With Expropertieslist1
.ShowPropertyPages = False
.Select(Expropertieslist1)
End With
|
21
|
How do I filter properties when loading
With Expropertieslist1
.FireIncludeProperty = True
End With
|
20
|
How do I get or set the selected property

With Expropertieslist1
.Add("First Name","Mihai",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.Add("Last Name","Filimon",exontrol.EXPROPERTIESLISTLib.EditTypeEnum.Edit)
.SelectedProperty = .get_Property("Last Name")
.Refresh()
End With
|
19
|
How do I remove "Invalid property value." message
With Expropertieslist1
.InvalidValueMessage = ""
.Select(Expropertieslist1)
End With
|
18
|
How do I change the "Invalid property value." message
With Expropertieslist1
.InvalidValueMessage = "new message"
.Select(Expropertieslist1)
End With
|
17
|
How do I edit a property as soon as the user selects it
With Expropertieslist1
.EditOnSelect = True
.Select(Expropertieslist1)
End With
|
16
|
How do I make the control read only

With Expropertieslist1
.ReadOnly = True
.Select(Expropertieslist1)
End With
|
15
|
How do I show or hide the read only members
With Expropertieslist1
.ShowReadOnly = False
.Select(Expropertieslist1)
End With
|
14
|
How do I show or hide the grid lines

With Expropertieslist1
.HasGridLines = exontrol.EXPROPERTIESLISTLib.GridLinesEnum.exNoLines
.Select(Expropertieslist1)
End With
|
13
|
How do I hide the hierarchy lines

With Expropertieslist1
.HasLines = False
.Select(Expropertieslist1)
End With
|
12
|
How can I add the horizontal scroll bar

With Expropertieslist1
.ColumnAutoResize = False
.HeaderVisible = True
.Select(Expropertieslist1)
End With
|
11
|
How do I show or hide the control's header bar

With Expropertieslist1
.HeaderVisible = True
.Select(Expropertieslist1)
End With
|
10
|
How do I show or hide the objects members
With Expropertieslist1
.ShowObjects = False
.Select(Expropertieslist1)
End With
|
9
|
How do I show or hide the restricted members
With Expropertieslist1
.ShowRestricted = False
.Select(Expropertieslist1)
End With
|
8
|
How do I show or hide the hidden members
With Expropertieslist1
.ShowHidden = False
.Select(Expropertieslist1)
End With
|
7
|
How do I browse or select an object
With Expropertieslist1
.Select(Expropertieslist1)
End With
|
6
|
How do I change the control's foreground color

With Expropertieslist1
.ForeColor = Color.FromArgb(120,0,120)
.Select(Expropertieslist1)
End With
|
5
|
How do I change the control's background color

With Expropertieslist1
.BackColor = Color.FromArgb(200,200,200)
End With
|
4
|
How do change the visual appearance for the control's border, using EBN

With Expropertieslist1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.BorderStyle = &H1000000
.BackColor = Color.FromArgb(255,255,255)
End With
|
3
|
How do I remove the control's border
With Expropertieslist1
.BorderStyle = exontrol.EXPROPERTIESLISTLib.BorderStyleEnum.None
End With
|
2
|
How do I change the height of the description part in the bottom side of the control

With Expropertieslist1
.DescriptionHeight = 100
End With
|
1
|
How do I hide or show the description part in the bottom side of the control

With Expropertieslist1
.DescriptionVisible = False
End With
|